From: Andreas Schwab Date: Sat, 14 Nov 2009 18:35:19 +0000 (+0000) Subject: Ignore errors from mkdir when creating deps X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~9488 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=1976cdd5b7989f85a1fcc7cad40aea753ed2e65e;p=emacs.git Ignore errors from mkdir when creating deps directory. --- diff --git a/src/ChangeLog b/src/ChangeLog index 51cf37b4b61..dd1f686a832 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2009-11-14 Andreas Schwab + + * Makefile.in: Ignore errors from mkdir when creating deps + directory. + 2009-11-14 Jan Djärv * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already diff --git a/src/Makefile.in b/src/Makefile.in index e6fa649e682..038689c6359 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -267,12 +267,12 @@ ALL_OBJC_CFLAGS=$(ALL_CFLAGS) @GNU_OBJC_CFLAGS@ .SUFFIXES: .m .c.o: #ifdef AUTO_DEPEND - @test -d deps || mkdir deps + @-test -d deps || mkdir deps #endif $(CC) -c $(CPPFLAGS) $(ALL_CFLAGS) $< .m.o: #ifdef AUTO_DEPEND - @test -d deps || mkdir deps + @-test -d deps || mkdir deps #endif $(CC) -c $(CPPFLAGS) $(ALL_OBJC_CFLAGS) $<